home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / jazlib.arc / JZSCRLUP.C < prev    next >
Text File  |  1988-12-18  |  247b  |  15 lines

  1. #include <jaz.h>
  2.  
  3. jzscrlup ( fuleft , flrite , fnum , fattr )
  4. int fuleft,flrite,fnum,fattr;
  5. {
  6.  
  7.   TREG wreg;
  8.   wreg.h.ah = 6;
  9.   wreg.h.al = fnum;
  10.   wreg.x.cx = fuleft;
  11.   wreg.x.dx = flrite;
  12.   wreg.h.bh = fattr;
  13.   intr(0x10,&wreg);
  14. }
  15.